Building an Estimator
Writeup
Criteria | Meet Specification |
---|---|
Provide a Writeup / README that includes all the rubric points and how you addressed each one. You can submit your writeup as markdown or pdf. |
The writeup / README should include a statement and supporting figures / images that explain how each rubric item was addressed, and specifically where in the code each step was handled. |
Implement Estimator
Criteria | Meet Specification |
---|---|
Determine the standard deviation of the measurement noise of both GPS X data and Accelerometer X data. |
The calculated standard deviation should correctly capture ~68% of the sensor measurements. Your writeup should describe the method used for determining the standard deviation given the simulated sensor measurements. |
Implement a better rate gyro attitude integration scheme in the |
The improved integration scheme should result in an attitude estimator of < 0.1 rad for each of the Euler angles for a duration of at least 3 seconds during the simulation. The integration scheme should use quaternions to improve performance over the current simple integration scheme. |
Implement all of the elements of the prediction step for the estimator. |
The prediction step should include the state update element ( |
Implement the magnetometer update. |
The update should properly include the magnetometer data into the state. Note that the solution should make sure to correctly measure the angle error between the current state and the magnetometer value (error should be the short way around, not the long way). |
Implement the GPS update. |
The estimator should correctly incorporate the GPS information to update the current state estimate. |
Flight Evaluation
Criteria | Meet Specification |
---|---|
Meet the performance criteria of each step. |
For each step of the project, the final estimator should be able to successfully meet the performance criteria with the controller provided. The estimator's parameters should be properly adjusted to satisfy each of the performance criteria elements. |
De-tune your controller to successfully fly the final desired box trajectory with your estimator and realistic sensors. |
The controller developed in the previous project should be de-tuned to successfully meet the performance criteria of the final scenario (<1m error for entire box flight). |